GetEventListenersRequest

data class GetEventListenersRequest(objectId: RemoteObjectId, depth: Int?, pierce: Boolean?)

Represents request frame that can be used with DOMDebugger#getEventListeners operation call.

Returns event listeners of the given object.

See also

Constructors

GetEventListenersRequest
Link copied to clipboard
fun GetEventListenersRequest(objectId: RemoteObjectId, depth: Int? = null, pierce: Boolean? = null)

Properties

depth
Link copied to clipboard
val depth: Int? = null
The maximum depth at which Node children should be retrieved, defaults to 1.
objectId
Link copied to clipboard
val objectId: RemoteObjectId
Identifier of the object to return listeners for.
pierce
Link copied to clipboard
val pierce: Boolean? = null
Whether or not iframes and shadow roots should be traversed when returning the subtree (default is false).

Sources

jvm source
Link copied to clipboard